home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / include / dvsfontdata.h < prev    next >
C/C++ Source or Header  |  1997-05-08  |  460b  |  14 lines

  1. #ifndef DVSFONTDATA_H
  2. #define DVSFONTDATA_H
  3.  
  4.  typedef struct
  5. {
  6.   FLOAT width, height;          /* horizontal and vertical char dimensions */
  7.   FLOAT angle, slant;           /* text angle, slant for italics */
  8.   int underline;                /* underline text */
  9.   int weight;                   /* weight for bolding */
  10.   int ptsize;                   /* point size */
  11.   char *facename;               /* requested font name */
  12. } SFONT_DESC;
  13.  
  14. #endif